home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Utilities / Dial CDEF ƒ / sincos.h < prev   
Encoding:
C/C++ Source or Header  |  1988-09-06  |  138 b   |  12 lines  |  [TEXT/KAHL]

  1. /*
  2.  * header to replace math.h
  3.  */
  4.  
  5. #include "sane.h"
  6.  
  7. #define    PI        (3.14159265358979323846)
  8.  
  9. double    sin(double x);
  10. double    cos(double x);
  11.  
  12.